(0) Obligation:
Runtime Complexity TRS:
The TRS R consists of the following rules:
0(#) → #
+(x, #) → x
+(#, x) → x
+(0(x), 0(y)) → 0(+(x, y))
+(0(x), 1(y)) → 1(+(x, y))
+(1(x), 0(y)) → 1(+(x, y))
+(1(x), 1(y)) → 0(+(+(x, y), 1(#)))
+(+(x, y), z) → +(x, +(y, z))
*(#, x) → #
*(0(x), y) → 0(*(x, y))
*(1(x), y) → +(0(*(x, y)), y)
*(*(x, y), z) → *(x, *(y, z))
*(x, +(y, z)) → +(*(x, y), *(x, z))
app(nil, l) → l
app(cons(x, l1), l2) → cons(x, app(l1, l2))
sum(nil) → 0(#)
sum(cons(x, l)) → +(x, sum(l))
sum(app(l1, l2)) → +(sum(l1), sum(l2))
prod(nil) → 1(#)
prod(cons(x, l)) → *(x, prod(l))
prod(app(l1, l2)) → *(prod(l1), prod(l2))
Rewrite Strategy: INNERMOST
 
(1) RenamingProof (EQUIVALENT transformation)
Renamed function symbols to avoid clashes with predefined symbol.
(2) Obligation:
Runtime Complexity Relative TRS:
The TRS R consists of the following rules:
0(#) → #
+'(x, #) → x
+'(#, x) → x
+'(0(x), 0(y)) → 0(+'(x, y))
+'(0(x), 1(y)) → 1(+'(x, y))
+'(1(x), 0(y)) → 1(+'(x, y))
+'(1(x), 1(y)) → 0(+'(+'(x, y), 1(#)))
+'(+'(x, y), z) → +'(x, +'(y, z))
*'(#, x) → #
*'(0(x), y) → 0(*'(x, y))
*'(1(x), y) → +'(0(*'(x, y)), y)
*'(*'(x, y), z) → *'(x, *'(y, z))
*'(x, +'(y, z)) → +'(*'(x, y), *'(x, z))
app(nil, l) → l
app(cons(x, l1), l2) → cons(x, app(l1, l2))
sum(nil) → 0(#)
sum(cons(x, l)) → +'(x, sum(l))
sum(app(l1, l2)) → +'(sum(l1), sum(l2))
prod(nil) → 1(#)
prod(cons(x, l)) → *'(x, prod(l))
prod(app(l1, l2)) → *'(prod(l1), prod(l2))
S is empty.
Rewrite Strategy: INNERMOST
 
(3) TypeInferenceProof (BOTH BOUNDS(ID, ID) transformation)
Infered types.
(4) Obligation:
Innermost TRS:
Rules:
0(#) → #
+'(x, #) → x
+'(#, x) → x
+'(0(x), 0(y)) → 0(+'(x, y))
+'(0(x), 1(y)) → 1(+'(x, y))
+'(1(x), 0(y)) → 1(+'(x, y))
+'(1(x), 1(y)) → 0(+'(+'(x, y), 1(#)))
+'(+'(x, y), z) → +'(x, +'(y, z))
*'(#, x) → #
*'(0(x), y) → 0(*'(x, y))
*'(1(x), y) → +'(0(*'(x, y)), y)
*'(*'(x, y), z) → *'(x, *'(y, z))
*'(x, +'(y, z)) → +'(*'(x, y), *'(x, z))
app(nil, l) → l
app(cons(x, l1), l2) → cons(x, app(l1, l2))
sum(nil) → 0(#)
sum(cons(x, l)) → +'(x, sum(l))
sum(app(l1, l2)) → +'(sum(l1), sum(l2))
prod(nil) → 1(#)
prod(cons(x, l)) → *'(x, prod(l))
prod(app(l1, l2)) → *'(prod(l1), prod(l2))
Types:
0 :: #:1 → #:1
# :: #:1
+' :: #:1 → #:1 → #:1
1 :: #:1 → #:1
*' :: #:1 → #:1 → #:1
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1 → nil:cons → nil:cons
sum :: nil:cons → #:1
prod :: nil:cons → #:1
hole_#:11_3 :: #:1
hole_nil:cons2_3 :: nil:cons
gen_#:13_3 :: Nat → #:1
gen_nil:cons4_3 :: Nat → nil:cons
(5) OrderProof (LOWER BOUND(ID) transformation)
Heuristically decided to analyse the following defined symbols:
+', 
*', 
app, 
sum, 
prodThey will be analysed ascendingly in the following order:
+' < *'
+' < sum
*' < prod
 
(6) Obligation:
Innermost TRS:
Rules:
0(
#) → 
#+'(
x, 
#) → 
x+'(
#, 
x) → 
x+'(
0(
x), 
0(
y)) → 
0(
+'(
x, 
y))
+'(
0(
x), 
1(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
0(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
1(
y)) → 
0(
+'(
+'(
x, 
y), 
1(
#)))
+'(
+'(
x, 
y), 
z) → 
+'(
x, 
+'(
y, 
z))
*'(
#, 
x) → 
#*'(
0(
x), 
y) → 
0(
*'(
x, 
y))
*'(
1(
x), 
y) → 
+'(
0(
*'(
x, 
y)), 
y)
*'(
*'(
x, 
y), 
z) → 
*'(
x, 
*'(
y, 
z))
*'(
x, 
+'(
y, 
z)) → 
+'(
*'(
x, 
y), 
*'(
x, 
z))
app(
nil, 
l) → 
lapp(
cons(
x, 
l1), 
l2) → 
cons(
x, 
app(
l1, 
l2))
sum(
nil) → 
0(
#)
sum(
cons(
x, 
l)) → 
+'(
x, 
sum(
l))
sum(
app(
l1, 
l2)) → 
+'(
sum(
l1), 
sum(
l2))
prod(
nil) → 
1(
#)
prod(
cons(
x, 
l)) → 
*'(
x, 
prod(
l))
prod(
app(
l1, 
l2)) → 
*'(
prod(
l1), 
prod(
l2))
Types:
0 :: #:1 → #:1
# :: #:1
+' :: #:1 → #:1 → #:1
1 :: #:1 → #:1
*' :: #:1 → #:1 → #:1
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1 → nil:cons → nil:cons
sum :: nil:cons → #:1
prod :: nil:cons → #:1
hole_#:11_3 :: #:1
hole_nil:cons2_3 :: nil:cons
gen_#:13_3 :: Nat → #:1
gen_nil:cons4_3 :: Nat → nil:cons
Generator Equations:
gen_#:13_3(0) ⇔ #
gen_#:13_3(+(x, 1)) ⇔ 1(gen_#:13_3(x))
gen_nil:cons4_3(0) ⇔ nil
gen_nil:cons4_3(+(x, 1)) ⇔ cons(#, gen_nil:cons4_3(x))
The following defined symbols remain to be analysed:
+', *', app, sum, prod
They will be analysed ascendingly in the following order:
+' < *'
+' < sum
*' < prod
 
(7) RewriteLemmaProof (LOWER BOUND(ID) transformation)
Proved the following rewrite lemma:
+'(
gen_#:13_3(
n6_3), 
gen_#:13_3(
n6_3)) → 
*5_3, rt ∈ Ω(n6
3)
Induction Base:
+'(gen_#:13_3(0), gen_#:13_3(0))
Induction Step:
+'(gen_#:13_3(+(n6_3, 1)), gen_#:13_3(+(n6_3, 1))) →RΩ(1)
0(+'(+'(gen_#:13_3(n6_3), gen_#:13_3(n6_3)), 1(#))) →IH
0(+'(*5_3, 1(#)))
We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).
 
(8) Complex Obligation (BEST)
(9) Obligation:
Innermost TRS:
Rules:
0(
#) → 
#+'(
x, 
#) → 
x+'(
#, 
x) → 
x+'(
0(
x), 
0(
y)) → 
0(
+'(
x, 
y))
+'(
0(
x), 
1(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
0(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
1(
y)) → 
0(
+'(
+'(
x, 
y), 
1(
#)))
+'(
+'(
x, 
y), 
z) → 
+'(
x, 
+'(
y, 
z))
*'(
#, 
x) → 
#*'(
0(
x), 
y) → 
0(
*'(
x, 
y))
*'(
1(
x), 
y) → 
+'(
0(
*'(
x, 
y)), 
y)
*'(
*'(
x, 
y), 
z) → 
*'(
x, 
*'(
y, 
z))
*'(
x, 
+'(
y, 
z)) → 
+'(
*'(
x, 
y), 
*'(
x, 
z))
app(
nil, 
l) → 
lapp(
cons(
x, 
l1), 
l2) → 
cons(
x, 
app(
l1, 
l2))
sum(
nil) → 
0(
#)
sum(
cons(
x, 
l)) → 
+'(
x, 
sum(
l))
sum(
app(
l1, 
l2)) → 
+'(
sum(
l1), 
sum(
l2))
prod(
nil) → 
1(
#)
prod(
cons(
x, 
l)) → 
*'(
x, 
prod(
l))
prod(
app(
l1, 
l2)) → 
*'(
prod(
l1), 
prod(
l2))
Types:
0 :: #:1 → #:1
# :: #:1
+' :: #:1 → #:1 → #:1
1 :: #:1 → #:1
*' :: #:1 → #:1 → #:1
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1 → nil:cons → nil:cons
sum :: nil:cons → #:1
prod :: nil:cons → #:1
hole_#:11_3 :: #:1
hole_nil:cons2_3 :: nil:cons
gen_#:13_3 :: Nat → #:1
gen_nil:cons4_3 :: Nat → nil:cons
Lemmas:
+'(gen_#:13_3(n6_3), gen_#:13_3(n6_3)) → *5_3, rt ∈ Ω(n63)
Generator Equations:
gen_#:13_3(0) ⇔ #
gen_#:13_3(+(x, 1)) ⇔ 1(gen_#:13_3(x))
gen_nil:cons4_3(0) ⇔ nil
gen_nil:cons4_3(+(x, 1)) ⇔ cons(#, gen_nil:cons4_3(x))
The following defined symbols remain to be analysed:
*', app, sum, prod
They will be analysed ascendingly in the following order:
*' < prod
 
(10) RewriteLemmaProof (LOWER BOUND(ID) transformation)
Proved the following rewrite lemma:
*'(
gen_#:13_3(
n106894_3), 
gen_#:13_3(
0)) → 
gen_#:13_3(
0), rt ∈ Ω(1 + n106894
3)
Induction Base:
*'(gen_#:13_3(0), gen_#:13_3(0)) →RΩ(1)
#
Induction Step:
*'(gen_#:13_3(+(n106894_3, 1)), gen_#:13_3(0)) →RΩ(1)
+'(0(*'(gen_#:13_3(n106894_3), gen_#:13_3(0))), gen_#:13_3(0)) →IH
+'(0(gen_#:13_3(0)), gen_#:13_3(0)) →RΩ(1)
+'(#, gen_#:13_3(0)) →RΩ(1)
#
We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).
 
(11) Complex Obligation (BEST)
(12) Obligation:
Innermost TRS:
Rules:
0(
#) → 
#+'(
x, 
#) → 
x+'(
#, 
x) → 
x+'(
0(
x), 
0(
y)) → 
0(
+'(
x, 
y))
+'(
0(
x), 
1(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
0(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
1(
y)) → 
0(
+'(
+'(
x, 
y), 
1(
#)))
+'(
+'(
x, 
y), 
z) → 
+'(
x, 
+'(
y, 
z))
*'(
#, 
x) → 
#*'(
0(
x), 
y) → 
0(
*'(
x, 
y))
*'(
1(
x), 
y) → 
+'(
0(
*'(
x, 
y)), 
y)
*'(
*'(
x, 
y), 
z) → 
*'(
x, 
*'(
y, 
z))
*'(
x, 
+'(
y, 
z)) → 
+'(
*'(
x, 
y), 
*'(
x, 
z))
app(
nil, 
l) → 
lapp(
cons(
x, 
l1), 
l2) → 
cons(
x, 
app(
l1, 
l2))
sum(
nil) → 
0(
#)
sum(
cons(
x, 
l)) → 
+'(
x, 
sum(
l))
sum(
app(
l1, 
l2)) → 
+'(
sum(
l1), 
sum(
l2))
prod(
nil) → 
1(
#)
prod(
cons(
x, 
l)) → 
*'(
x, 
prod(
l))
prod(
app(
l1, 
l2)) → 
*'(
prod(
l1), 
prod(
l2))
Types:
0 :: #:1 → #:1
# :: #:1
+' :: #:1 → #:1 → #:1
1 :: #:1 → #:1
*' :: #:1 → #:1 → #:1
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1 → nil:cons → nil:cons
sum :: nil:cons → #:1
prod :: nil:cons → #:1
hole_#:11_3 :: #:1
hole_nil:cons2_3 :: nil:cons
gen_#:13_3 :: Nat → #:1
gen_nil:cons4_3 :: Nat → nil:cons
Lemmas:
+'(gen_#:13_3(n6_3), gen_#:13_3(n6_3)) → *5_3, rt ∈ Ω(n63)
*'(gen_#:13_3(n106894_3), gen_#:13_3(0)) → gen_#:13_3(0), rt ∈ Ω(1 + n1068943)
Generator Equations:
gen_#:13_3(0) ⇔ #
gen_#:13_3(+(x, 1)) ⇔ 1(gen_#:13_3(x))
gen_nil:cons4_3(0) ⇔ nil
gen_nil:cons4_3(+(x, 1)) ⇔ cons(#, gen_nil:cons4_3(x))
The following defined symbols remain to be analysed:
app, sum, prod
 
(13) RewriteLemmaProof (LOWER BOUND(ID) transformation)
Proved the following rewrite lemma:
app(
gen_nil:cons4_3(
n121296_3), 
gen_nil:cons4_3(
b)) → 
gen_nil:cons4_3(
+(
n121296_3, 
b)), rt ∈ Ω(1 + n121296
3)
Induction Base:
app(gen_nil:cons4_3(0), gen_nil:cons4_3(b)) →RΩ(1)
gen_nil:cons4_3(b)
Induction Step:
app(gen_nil:cons4_3(+(n121296_3, 1)), gen_nil:cons4_3(b)) →RΩ(1)
cons(#, app(gen_nil:cons4_3(n121296_3), gen_nil:cons4_3(b))) →IH
cons(#, gen_nil:cons4_3(+(b, c121297_3)))
We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).
 
(14) Complex Obligation (BEST)
(15) Obligation:
Innermost TRS:
Rules:
0(
#) → 
#+'(
x, 
#) → 
x+'(
#, 
x) → 
x+'(
0(
x), 
0(
y)) → 
0(
+'(
x, 
y))
+'(
0(
x), 
1(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
0(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
1(
y)) → 
0(
+'(
+'(
x, 
y), 
1(
#)))
+'(
+'(
x, 
y), 
z) → 
+'(
x, 
+'(
y, 
z))
*'(
#, 
x) → 
#*'(
0(
x), 
y) → 
0(
*'(
x, 
y))
*'(
1(
x), 
y) → 
+'(
0(
*'(
x, 
y)), 
y)
*'(
*'(
x, 
y), 
z) → 
*'(
x, 
*'(
y, 
z))
*'(
x, 
+'(
y, 
z)) → 
+'(
*'(
x, 
y), 
*'(
x, 
z))
app(
nil, 
l) → 
lapp(
cons(
x, 
l1), 
l2) → 
cons(
x, 
app(
l1, 
l2))
sum(
nil) → 
0(
#)
sum(
cons(
x, 
l)) → 
+'(
x, 
sum(
l))
sum(
app(
l1, 
l2)) → 
+'(
sum(
l1), 
sum(
l2))
prod(
nil) → 
1(
#)
prod(
cons(
x, 
l)) → 
*'(
x, 
prod(
l))
prod(
app(
l1, 
l2)) → 
*'(
prod(
l1), 
prod(
l2))
Types:
0 :: #:1 → #:1
# :: #:1
+' :: #:1 → #:1 → #:1
1 :: #:1 → #:1
*' :: #:1 → #:1 → #:1
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1 → nil:cons → nil:cons
sum :: nil:cons → #:1
prod :: nil:cons → #:1
hole_#:11_3 :: #:1
hole_nil:cons2_3 :: nil:cons
gen_#:13_3 :: Nat → #:1
gen_nil:cons4_3 :: Nat → nil:cons
Lemmas:
+'(gen_#:13_3(n6_3), gen_#:13_3(n6_3)) → *5_3, rt ∈ Ω(n63)
*'(gen_#:13_3(n106894_3), gen_#:13_3(0)) → gen_#:13_3(0), rt ∈ Ω(1 + n1068943)
app(gen_nil:cons4_3(n121296_3), gen_nil:cons4_3(b)) → gen_nil:cons4_3(+(n121296_3, b)), rt ∈ Ω(1 + n1212963)
Generator Equations:
gen_#:13_3(0) ⇔ #
gen_#:13_3(+(x, 1)) ⇔ 1(gen_#:13_3(x))
gen_nil:cons4_3(0) ⇔ nil
gen_nil:cons4_3(+(x, 1)) ⇔ cons(#, gen_nil:cons4_3(x))
The following defined symbols remain to be analysed:
sum, prod
 
(16) RewriteLemmaProof (LOWER BOUND(ID) transformation)
Proved the following rewrite lemma:
sum(
gen_nil:cons4_3(
n122418_3)) → 
gen_#:13_3(
0), rt ∈ Ω(1 + n122418
3)
Induction Base:
sum(gen_nil:cons4_3(0)) →RΩ(1)
0(#) →RΩ(1)
#
Induction Step:
sum(gen_nil:cons4_3(+(n122418_3, 1))) →RΩ(1)
+'(#, sum(gen_nil:cons4_3(n122418_3))) →IH
+'(#, gen_#:13_3(0)) →RΩ(1)
#
We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).
 
(17) Complex Obligation (BEST)
(18) Obligation:
Innermost TRS:
Rules:
0(
#) → 
#+'(
x, 
#) → 
x+'(
#, 
x) → 
x+'(
0(
x), 
0(
y)) → 
0(
+'(
x, 
y))
+'(
0(
x), 
1(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
0(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
1(
y)) → 
0(
+'(
+'(
x, 
y), 
1(
#)))
+'(
+'(
x, 
y), 
z) → 
+'(
x, 
+'(
y, 
z))
*'(
#, 
x) → 
#*'(
0(
x), 
y) → 
0(
*'(
x, 
y))
*'(
1(
x), 
y) → 
+'(
0(
*'(
x, 
y)), 
y)
*'(
*'(
x, 
y), 
z) → 
*'(
x, 
*'(
y, 
z))
*'(
x, 
+'(
y, 
z)) → 
+'(
*'(
x, 
y), 
*'(
x, 
z))
app(
nil, 
l) → 
lapp(
cons(
x, 
l1), 
l2) → 
cons(
x, 
app(
l1, 
l2))
sum(
nil) → 
0(
#)
sum(
cons(
x, 
l)) → 
+'(
x, 
sum(
l))
sum(
app(
l1, 
l2)) → 
+'(
sum(
l1), 
sum(
l2))
prod(
nil) → 
1(
#)
prod(
cons(
x, 
l)) → 
*'(
x, 
prod(
l))
prod(
app(
l1, 
l2)) → 
*'(
prod(
l1), 
prod(
l2))
Types:
0 :: #:1 → #:1
# :: #:1
+' :: #:1 → #:1 → #:1
1 :: #:1 → #:1
*' :: #:1 → #:1 → #:1
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1 → nil:cons → nil:cons
sum :: nil:cons → #:1
prod :: nil:cons → #:1
hole_#:11_3 :: #:1
hole_nil:cons2_3 :: nil:cons
gen_#:13_3 :: Nat → #:1
gen_nil:cons4_3 :: Nat → nil:cons
Lemmas:
+'(gen_#:13_3(n6_3), gen_#:13_3(n6_3)) → *5_3, rt ∈ Ω(n63)
*'(gen_#:13_3(n106894_3), gen_#:13_3(0)) → gen_#:13_3(0), rt ∈ Ω(1 + n1068943)
app(gen_nil:cons4_3(n121296_3), gen_nil:cons4_3(b)) → gen_nil:cons4_3(+(n121296_3, b)), rt ∈ Ω(1 + n1212963)
sum(gen_nil:cons4_3(n122418_3)) → gen_#:13_3(0), rt ∈ Ω(1 + n1224183)
Generator Equations:
gen_#:13_3(0) ⇔ #
gen_#:13_3(+(x, 1)) ⇔ 1(gen_#:13_3(x))
gen_nil:cons4_3(0) ⇔ nil
gen_nil:cons4_3(+(x, 1)) ⇔ cons(#, gen_nil:cons4_3(x))
The following defined symbols remain to be analysed:
prod
 
(19) RewriteLemmaProof (LOWER BOUND(ID) transformation)
Proved the following rewrite lemma:
prod(
gen_nil:cons4_3(
n128544_3)) → 
*5_3, rt ∈ Ω(n128544
3)
Induction Base:
prod(gen_nil:cons4_3(0))
Induction Step:
prod(gen_nil:cons4_3(+(n128544_3, 1))) →RΩ(1)
*'(#, prod(gen_nil:cons4_3(n128544_3))) →IH
*'(#, *5_3)
We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).
 
(20) Complex Obligation (BEST)
(21) Obligation:
Innermost TRS:
Rules:
0(
#) → 
#+'(
x, 
#) → 
x+'(
#, 
x) → 
x+'(
0(
x), 
0(
y)) → 
0(
+'(
x, 
y))
+'(
0(
x), 
1(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
0(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
1(
y)) → 
0(
+'(
+'(
x, 
y), 
1(
#)))
+'(
+'(
x, 
y), 
z) → 
+'(
x, 
+'(
y, 
z))
*'(
#, 
x) → 
#*'(
0(
x), 
y) → 
0(
*'(
x, 
y))
*'(
1(
x), 
y) → 
+'(
0(
*'(
x, 
y)), 
y)
*'(
*'(
x, 
y), 
z) → 
*'(
x, 
*'(
y, 
z))
*'(
x, 
+'(
y, 
z)) → 
+'(
*'(
x, 
y), 
*'(
x, 
z))
app(
nil, 
l) → 
lapp(
cons(
x, 
l1), 
l2) → 
cons(
x, 
app(
l1, 
l2))
sum(
nil) → 
0(
#)
sum(
cons(
x, 
l)) → 
+'(
x, 
sum(
l))
sum(
app(
l1, 
l2)) → 
+'(
sum(
l1), 
sum(
l2))
prod(
nil) → 
1(
#)
prod(
cons(
x, 
l)) → 
*'(
x, 
prod(
l))
prod(
app(
l1, 
l2)) → 
*'(
prod(
l1), 
prod(
l2))
Types:
0 :: #:1 → #:1
# :: #:1
+' :: #:1 → #:1 → #:1
1 :: #:1 → #:1
*' :: #:1 → #:1 → #:1
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1 → nil:cons → nil:cons
sum :: nil:cons → #:1
prod :: nil:cons → #:1
hole_#:11_3 :: #:1
hole_nil:cons2_3 :: nil:cons
gen_#:13_3 :: Nat → #:1
gen_nil:cons4_3 :: Nat → nil:cons
Lemmas:
+'(gen_#:13_3(n6_3), gen_#:13_3(n6_3)) → *5_3, rt ∈ Ω(n63)
*'(gen_#:13_3(n106894_3), gen_#:13_3(0)) → gen_#:13_3(0), rt ∈ Ω(1 + n1068943)
app(gen_nil:cons4_3(n121296_3), gen_nil:cons4_3(b)) → gen_nil:cons4_3(+(n121296_3, b)), rt ∈ Ω(1 + n1212963)
sum(gen_nil:cons4_3(n122418_3)) → gen_#:13_3(0), rt ∈ Ω(1 + n1224183)
prod(gen_nil:cons4_3(n128544_3)) → *5_3, rt ∈ Ω(n1285443)
Generator Equations:
gen_#:13_3(0) ⇔ #
gen_#:13_3(+(x, 1)) ⇔ 1(gen_#:13_3(x))
gen_nil:cons4_3(0) ⇔ nil
gen_nil:cons4_3(+(x, 1)) ⇔ cons(#, gen_nil:cons4_3(x))
No more defined symbols left to analyse.
 
(22) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
+'(gen_#:13_3(n6_3), gen_#:13_3(n6_3)) → *5_3, rt ∈ Ω(n63)
(23) BOUNDS(n^1, INF)
(24) Obligation:
Innermost TRS:
Rules:
0(
#) → 
#+'(
x, 
#) → 
x+'(
#, 
x) → 
x+'(
0(
x), 
0(
y)) → 
0(
+'(
x, 
y))
+'(
0(
x), 
1(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
0(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
1(
y)) → 
0(
+'(
+'(
x, 
y), 
1(
#)))
+'(
+'(
x, 
y), 
z) → 
+'(
x, 
+'(
y, 
z))
*'(
#, 
x) → 
#*'(
0(
x), 
y) → 
0(
*'(
x, 
y))
*'(
1(
x), 
y) → 
+'(
0(
*'(
x, 
y)), 
y)
*'(
*'(
x, 
y), 
z) → 
*'(
x, 
*'(
y, 
z))
*'(
x, 
+'(
y, 
z)) → 
+'(
*'(
x, 
y), 
*'(
x, 
z))
app(
nil, 
l) → 
lapp(
cons(
x, 
l1), 
l2) → 
cons(
x, 
app(
l1, 
l2))
sum(
nil) → 
0(
#)
sum(
cons(
x, 
l)) → 
+'(
x, 
sum(
l))
sum(
app(
l1, 
l2)) → 
+'(
sum(
l1), 
sum(
l2))
prod(
nil) → 
1(
#)
prod(
cons(
x, 
l)) → 
*'(
x, 
prod(
l))
prod(
app(
l1, 
l2)) → 
*'(
prod(
l1), 
prod(
l2))
Types:
0 :: #:1 → #:1
# :: #:1
+' :: #:1 → #:1 → #:1
1 :: #:1 → #:1
*' :: #:1 → #:1 → #:1
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1 → nil:cons → nil:cons
sum :: nil:cons → #:1
prod :: nil:cons → #:1
hole_#:11_3 :: #:1
hole_nil:cons2_3 :: nil:cons
gen_#:13_3 :: Nat → #:1
gen_nil:cons4_3 :: Nat → nil:cons
Lemmas:
+'(gen_#:13_3(n6_3), gen_#:13_3(n6_3)) → *5_3, rt ∈ Ω(n63)
*'(gen_#:13_3(n106894_3), gen_#:13_3(0)) → gen_#:13_3(0), rt ∈ Ω(1 + n1068943)
app(gen_nil:cons4_3(n121296_3), gen_nil:cons4_3(b)) → gen_nil:cons4_3(+(n121296_3, b)), rt ∈ Ω(1 + n1212963)
sum(gen_nil:cons4_3(n122418_3)) → gen_#:13_3(0), rt ∈ Ω(1 + n1224183)
prod(gen_nil:cons4_3(n128544_3)) → *5_3, rt ∈ Ω(n1285443)
Generator Equations:
gen_#:13_3(0) ⇔ #
gen_#:13_3(+(x, 1)) ⇔ 1(gen_#:13_3(x))
gen_nil:cons4_3(0) ⇔ nil
gen_nil:cons4_3(+(x, 1)) ⇔ cons(#, gen_nil:cons4_3(x))
No more defined symbols left to analyse.
 
(25) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
+'(gen_#:13_3(n6_3), gen_#:13_3(n6_3)) → *5_3, rt ∈ Ω(n63)
(26) BOUNDS(n^1, INF)
(27) Obligation:
Innermost TRS:
Rules:
0(
#) → 
#+'(
x, 
#) → 
x+'(
#, 
x) → 
x+'(
0(
x), 
0(
y)) → 
0(
+'(
x, 
y))
+'(
0(
x), 
1(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
0(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
1(
y)) → 
0(
+'(
+'(
x, 
y), 
1(
#)))
+'(
+'(
x, 
y), 
z) → 
+'(
x, 
+'(
y, 
z))
*'(
#, 
x) → 
#*'(
0(
x), 
y) → 
0(
*'(
x, 
y))
*'(
1(
x), 
y) → 
+'(
0(
*'(
x, 
y)), 
y)
*'(
*'(
x, 
y), 
z) → 
*'(
x, 
*'(
y, 
z))
*'(
x, 
+'(
y, 
z)) → 
+'(
*'(
x, 
y), 
*'(
x, 
z))
app(
nil, 
l) → 
lapp(
cons(
x, 
l1), 
l2) → 
cons(
x, 
app(
l1, 
l2))
sum(
nil) → 
0(
#)
sum(
cons(
x, 
l)) → 
+'(
x, 
sum(
l))
sum(
app(
l1, 
l2)) → 
+'(
sum(
l1), 
sum(
l2))
prod(
nil) → 
1(
#)
prod(
cons(
x, 
l)) → 
*'(
x, 
prod(
l))
prod(
app(
l1, 
l2)) → 
*'(
prod(
l1), 
prod(
l2))
Types:
0 :: #:1 → #:1
# :: #:1
+' :: #:1 → #:1 → #:1
1 :: #:1 → #:1
*' :: #:1 → #:1 → #:1
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1 → nil:cons → nil:cons
sum :: nil:cons → #:1
prod :: nil:cons → #:1
hole_#:11_3 :: #:1
hole_nil:cons2_3 :: nil:cons
gen_#:13_3 :: Nat → #:1
gen_nil:cons4_3 :: Nat → nil:cons
Lemmas:
+'(gen_#:13_3(n6_3), gen_#:13_3(n6_3)) → *5_3, rt ∈ Ω(n63)
*'(gen_#:13_3(n106894_3), gen_#:13_3(0)) → gen_#:13_3(0), rt ∈ Ω(1 + n1068943)
app(gen_nil:cons4_3(n121296_3), gen_nil:cons4_3(b)) → gen_nil:cons4_3(+(n121296_3, b)), rt ∈ Ω(1 + n1212963)
sum(gen_nil:cons4_3(n122418_3)) → gen_#:13_3(0), rt ∈ Ω(1 + n1224183)
Generator Equations:
gen_#:13_3(0) ⇔ #
gen_#:13_3(+(x, 1)) ⇔ 1(gen_#:13_3(x))
gen_nil:cons4_3(0) ⇔ nil
gen_nil:cons4_3(+(x, 1)) ⇔ cons(#, gen_nil:cons4_3(x))
No more defined symbols left to analyse.
 
(28) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
+'(gen_#:13_3(n6_3), gen_#:13_3(n6_3)) → *5_3, rt ∈ Ω(n63)
(29) BOUNDS(n^1, INF)
(30) Obligation:
Innermost TRS:
Rules:
0(
#) → 
#+'(
x, 
#) → 
x+'(
#, 
x) → 
x+'(
0(
x), 
0(
y)) → 
0(
+'(
x, 
y))
+'(
0(
x), 
1(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
0(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
1(
y)) → 
0(
+'(
+'(
x, 
y), 
1(
#)))
+'(
+'(
x, 
y), 
z) → 
+'(
x, 
+'(
y, 
z))
*'(
#, 
x) → 
#*'(
0(
x), 
y) → 
0(
*'(
x, 
y))
*'(
1(
x), 
y) → 
+'(
0(
*'(
x, 
y)), 
y)
*'(
*'(
x, 
y), 
z) → 
*'(
x, 
*'(
y, 
z))
*'(
x, 
+'(
y, 
z)) → 
+'(
*'(
x, 
y), 
*'(
x, 
z))
app(
nil, 
l) → 
lapp(
cons(
x, 
l1), 
l2) → 
cons(
x, 
app(
l1, 
l2))
sum(
nil) → 
0(
#)
sum(
cons(
x, 
l)) → 
+'(
x, 
sum(
l))
sum(
app(
l1, 
l2)) → 
+'(
sum(
l1), 
sum(
l2))
prod(
nil) → 
1(
#)
prod(
cons(
x, 
l)) → 
*'(
x, 
prod(
l))
prod(
app(
l1, 
l2)) → 
*'(
prod(
l1), 
prod(
l2))
Types:
0 :: #:1 → #:1
# :: #:1
+' :: #:1 → #:1 → #:1
1 :: #:1 → #:1
*' :: #:1 → #:1 → #:1
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1 → nil:cons → nil:cons
sum :: nil:cons → #:1
prod :: nil:cons → #:1
hole_#:11_3 :: #:1
hole_nil:cons2_3 :: nil:cons
gen_#:13_3 :: Nat → #:1
gen_nil:cons4_3 :: Nat → nil:cons
Lemmas:
+'(gen_#:13_3(n6_3), gen_#:13_3(n6_3)) → *5_3, rt ∈ Ω(n63)
*'(gen_#:13_3(n106894_3), gen_#:13_3(0)) → gen_#:13_3(0), rt ∈ Ω(1 + n1068943)
app(gen_nil:cons4_3(n121296_3), gen_nil:cons4_3(b)) → gen_nil:cons4_3(+(n121296_3, b)), rt ∈ Ω(1 + n1212963)
Generator Equations:
gen_#:13_3(0) ⇔ #
gen_#:13_3(+(x, 1)) ⇔ 1(gen_#:13_3(x))
gen_nil:cons4_3(0) ⇔ nil
gen_nil:cons4_3(+(x, 1)) ⇔ cons(#, gen_nil:cons4_3(x))
No more defined symbols left to analyse.
 
(31) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
+'(gen_#:13_3(n6_3), gen_#:13_3(n6_3)) → *5_3, rt ∈ Ω(n63)
(32) BOUNDS(n^1, INF)
(33) Obligation:
Innermost TRS:
Rules:
0(
#) → 
#+'(
x, 
#) → 
x+'(
#, 
x) → 
x+'(
0(
x), 
0(
y)) → 
0(
+'(
x, 
y))
+'(
0(
x), 
1(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
0(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
1(
y)) → 
0(
+'(
+'(
x, 
y), 
1(
#)))
+'(
+'(
x, 
y), 
z) → 
+'(
x, 
+'(
y, 
z))
*'(
#, 
x) → 
#*'(
0(
x), 
y) → 
0(
*'(
x, 
y))
*'(
1(
x), 
y) → 
+'(
0(
*'(
x, 
y)), 
y)
*'(
*'(
x, 
y), 
z) → 
*'(
x, 
*'(
y, 
z))
*'(
x, 
+'(
y, 
z)) → 
+'(
*'(
x, 
y), 
*'(
x, 
z))
app(
nil, 
l) → 
lapp(
cons(
x, 
l1), 
l2) → 
cons(
x, 
app(
l1, 
l2))
sum(
nil) → 
0(
#)
sum(
cons(
x, 
l)) → 
+'(
x, 
sum(
l))
sum(
app(
l1, 
l2)) → 
+'(
sum(
l1), 
sum(
l2))
prod(
nil) → 
1(
#)
prod(
cons(
x, 
l)) → 
*'(
x, 
prod(
l))
prod(
app(
l1, 
l2)) → 
*'(
prod(
l1), 
prod(
l2))
Types:
0 :: #:1 → #:1
# :: #:1
+' :: #:1 → #:1 → #:1
1 :: #:1 → #:1
*' :: #:1 → #:1 → #:1
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1 → nil:cons → nil:cons
sum :: nil:cons → #:1
prod :: nil:cons → #:1
hole_#:11_3 :: #:1
hole_nil:cons2_3 :: nil:cons
gen_#:13_3 :: Nat → #:1
gen_nil:cons4_3 :: Nat → nil:cons
Lemmas:
+'(gen_#:13_3(n6_3), gen_#:13_3(n6_3)) → *5_3, rt ∈ Ω(n63)
*'(gen_#:13_3(n106894_3), gen_#:13_3(0)) → gen_#:13_3(0), rt ∈ Ω(1 + n1068943)
Generator Equations:
gen_#:13_3(0) ⇔ #
gen_#:13_3(+(x, 1)) ⇔ 1(gen_#:13_3(x))
gen_nil:cons4_3(0) ⇔ nil
gen_nil:cons4_3(+(x, 1)) ⇔ cons(#, gen_nil:cons4_3(x))
No more defined symbols left to analyse.
 
(34) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
+'(gen_#:13_3(n6_3), gen_#:13_3(n6_3)) → *5_3, rt ∈ Ω(n63)
(35) BOUNDS(n^1, INF)
(36) Obligation:
Innermost TRS:
Rules:
0(
#) → 
#+'(
x, 
#) → 
x+'(
#, 
x) → 
x+'(
0(
x), 
0(
y)) → 
0(
+'(
x, 
y))
+'(
0(
x), 
1(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
0(
y)) → 
1(
+'(
x, 
y))
+'(
1(
x), 
1(
y)) → 
0(
+'(
+'(
x, 
y), 
1(
#)))
+'(
+'(
x, 
y), 
z) → 
+'(
x, 
+'(
y, 
z))
*'(
#, 
x) → 
#*'(
0(
x), 
y) → 
0(
*'(
x, 
y))
*'(
1(
x), 
y) → 
+'(
0(
*'(
x, 
y)), 
y)
*'(
*'(
x, 
y), 
z) → 
*'(
x, 
*'(
y, 
z))
*'(
x, 
+'(
y, 
z)) → 
+'(
*'(
x, 
y), 
*'(
x, 
z))
app(
nil, 
l) → 
lapp(
cons(
x, 
l1), 
l2) → 
cons(
x, 
app(
l1, 
l2))
sum(
nil) → 
0(
#)
sum(
cons(
x, 
l)) → 
+'(
x, 
sum(
l))
sum(
app(
l1, 
l2)) → 
+'(
sum(
l1), 
sum(
l2))
prod(
nil) → 
1(
#)
prod(
cons(
x, 
l)) → 
*'(
x, 
prod(
l))
prod(
app(
l1, 
l2)) → 
*'(
prod(
l1), 
prod(
l2))
Types:
0 :: #:1 → #:1
# :: #:1
+' :: #:1 → #:1 → #:1
1 :: #:1 → #:1
*' :: #:1 → #:1 → #:1
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1 → nil:cons → nil:cons
sum :: nil:cons → #:1
prod :: nil:cons → #:1
hole_#:11_3 :: #:1
hole_nil:cons2_3 :: nil:cons
gen_#:13_3 :: Nat → #:1
gen_nil:cons4_3 :: Nat → nil:cons
Lemmas:
+'(gen_#:13_3(n6_3), gen_#:13_3(n6_3)) → *5_3, rt ∈ Ω(n63)
Generator Equations:
gen_#:13_3(0) ⇔ #
gen_#:13_3(+(x, 1)) ⇔ 1(gen_#:13_3(x))
gen_nil:cons4_3(0) ⇔ nil
gen_nil:cons4_3(+(x, 1)) ⇔ cons(#, gen_nil:cons4_3(x))
No more defined symbols left to analyse.
 
(37) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
+'(gen_#:13_3(n6_3), gen_#:13_3(n6_3)) → *5_3, rt ∈ Ω(n63)
(38) BOUNDS(n^1, INF)